home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _5AE5E78F8ABD40199523013C155C6BDC < prev    next >
Encoding:
Text File  |  2006-08-04  |  750 b   |  28 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation.',
  6.         'Copyright': u'Copyright (c) 2003-2006 Corel Corporation.  All rights reserved.',
  7.         'Description': u'Factory default preset for LensBlur effect',
  8.         'Host': u'Corel Paint Shop Pro Photo XI',
  9.         'Host Version': u'11.00'
  10.         }
  11.  
  12. def Preset_LensBlur():
  13.     return {
  14.         'Amount': 5, 
  15.         'Focus': 0, 
  16.         'Feather': 20, 
  17.         'Selection': [(1296,972),(1897,1573)], 
  18.         'SelectionMode': 3, 
  19.         'InvertSelection': False, 
  20.         'ApertureShape': 0
  21.         }
  22.  
  23. def Do(Environment):
  24.     # DepthOfField_LOCALIZED
  25.     App.Do( Environment, 'LensBlur',         Preset_LensBlur())
  26.  
  27.  
  28.